c! Configuration by Bento ;) 
! mailto:mauricio@bentow.com.br

configure terminal
	hostname R3
	service password-encryption
	enable secret cisco
	
	line console 0
		password cisco
		login
		exit

	line vty 0 4
		password cisco
		login
		exit

	int s0/0
		description "DTE Link to R3"
		ip address 172.16.1.10 255.255.255.252
		encapsulation ppp
		bandwidth 56
		no shutdown
		exit
	
	int s0/1
		description "DCE Link to R2"
		ip address 172.16.1.13 255.255.255.252
		encapsulation ppp
		clock rate 56000
		bandwidth 2000
		no shutdown
		exit

	int f0/0
		description "LAN"
		ip address 192.168.3.1 255.255.255.0
		no shutdown
		exit
	
	router eigrp 200
		network 172.16.1.0
		network 192.168.3.0
		no auto-summary
		exit
	

exit
	
	

copy running-config startup-config